home *** CD-ROM | disk | FTP | other *** search
- property howLong, currentTime
-
- on prepareFrame
- set currentTime to the timer
- end
-
- on exitFrame
- repeat while the timer < (currentTime + howLong)
- nothing()
- end repeat
- end
-
- on getPropertyDescriptionList
- set propertyDescriptionList to [#howLong: [#comment: "How long to wait (1/60th seconds):", #format: #integer, #default: 30]]
- return propertyDescriptionList
- end
-
- on getBehaviorDescription
- return "This behavior hold the playback head in place for the amount of time specified in " & QUOTE & " the how long to wait " & QUOTE & " property."
- end
-